home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1997 January / macformat46.iso / Shareware Plus / Developers / Library / AVF 1.1 Pack / AVF 1.1 pack ƒ folder / AVF 1.1 pack ƒ / headers / VideoSession.h < prev   
Encoding:
Text File  |  1996-09-29  |  744 b   |  26 lines

  1. // ---------------------------------------------------------------------------
  2. //        • AVF 1.1 - Asynchronous Video Framework
  3. //      • 
  4. //      • Philippe Lang, 1733 Treyvaux, SWITZERLAND
  5. //      • plang@com.mcnet.ch
  6. // ---------------------------------------------------------------------------
  7.  
  8. #pragma once
  9.  
  10. #include <Components.h>
  11. #include <QuickTimeComponents.h>
  12.  
  13. #define ConnectixVdig    'Ctx6'
  14. #define AppleVdig       'appl'
  15.  
  16. enum VideoErr { FindNextComponentErr, OpenComponentErr, CloseComponentErr };
  17.  
  18. class    VideoSession {
  19. public:
  20.     VideoSession( OSType inVdig ) throw ( VideoErr );
  21.     ~VideoSession() throw ( VideoErr );
  22.     VideoDigitizerComponent    VdigComponent() { return ( mVdigComp ); };
  23.     
  24. protected:
  25.     VideoDigitizerComponent        mVdigComp;
  26. };